home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / GameKit / gamekit-1 / RandomBonusTracker.m < prev    next >
Text File  |  1995-06-12  |  298b  |  24 lines

  1.  
  2. #import <gamekit/gamekit.h>
  3. #import <bsd/libc.h>
  4.  
  5. @implementation RandomBonusTracker
  6.  
  7. - init
  8. {
  9.     [super init];
  10.     increment = 1;
  11.     srandom(time(0));
  12.     return self;
  13. }
  14.  
  15. - (int)bonusValue
  16. {
  17.     int range = ((max - min) / increment) + 1;
  18.     value = (random() % range) * increment + min;
  19.     return value;
  20. }
  21.  
  22.  
  23. @end
  24.